home *** CD-ROM | disk | FTP | other *** search
/ AOL File Library: 2,801 to 2,900 / aol-file-protocol-4400-2801-to-2900.zip / AOLDLs / C++ Files Library / HyperCuber Source / HyperCuber 2.0 Source.sit / HyperCuber 2.0 Source / CEditKeyControlsDirector.h < prev    next >
Text File  |  1994-04-05  |  656b  |  24 lines

  1. //|~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  2. //| This file contains the interface to the CEditKeyControlsDirector class.  The
  3. //| CEditKeyControlsDirector class supervises the dialog which is used to edit
  4. //| key controls.
  5. //|________________________________________________________________________________
  6.  
  7. #pragma once
  8.  
  9. #include "Keys.h"
  10.  
  11. #include <CDialogDirector.h>
  12.  
  13. class CEditKeyControlsDirector : public CDialogDirector
  14.     {
  15.  
  16.     key_control_struct *theKey;        //  The key command edited
  17.     
  18.   public:
  19.  
  20.     void    IEditKeyControlsDirector (CDirectorOwner *aSupervisor, key_control_struct *key);
  21.     void    TalkToUser(void);
  22.  
  23.     };
  24.